home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / sweep10.zip / HEAP.HPP < prev    next >
Text File  |  1990-07-07  |  174b  |  11 lines

  1. ////////////////
  2. // heap class //
  3. ////////////////
  4.  
  5. class Heap {
  6.     void far * oldheap;
  7.   public:
  8.     Heap (unsigned long s = 0, unsigned b = 0);
  9.     ~Heap();
  10. };
  11.